home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / othergnu / gnuplot.zoo / demo / using.demo < prev    next >
Text File  |  1992-03-02  |  729b  |  22 lines

  1. #
  2. # Requires data file "using.dat" from this directory,
  3. # so change current working directory to this directory before running.
  4. #
  5. set title "Convex     November 1-7 1989"
  6. set label "(Weekend)" at 5,25 center
  7. plot 'using.dat' using 3:4 title "Logged in" with impulses,\
  8.      'using.dat' using 3:5 t "Load average" with points,\
  9.      'using.dat' using 3:6 t "%CPU used" with lines
  10. set nolabel
  11. pause -1 "Hit return to continue"
  12.  
  13. set title "Convex     November 1-7 1989    Circadian"
  14. set xrange[-1:24]
  15. plot 'using.dat' using 2:4 title "Logged in" with impulses,\
  16.      'using.dat' using 2:4 title "Logged in" with points
  17. pause -1 "Hit return to continue"
  18.  
  19. # undo what we have done above
  20. set title
  21. set autoscale x
  22.